Wiener process
Brownian motion
#statistics #stochastic_processes
#statistics #stochastic_processes
Definition
A standard (one-dimensional) Wiener process (also called Brownian motion) is a stochastic process indexed by with properties:
- With probability , function continuous in
- stationary, independent increments for process
- normal distribution for increment
-dimensional
(Standard) Brownian motion is a stochastic process in that satisfies the following properties:
- (independence of increments) For all , random variables are mutually independent.
- (law of the increments) For all ,B_t - B_s \sim \mathcal{N}(0, (t-s) I_d)$$ ([[Gaussian distribution|normal distribution]]) 4. (_continuity of the paths_) Almost surely, $t \mapsto B_t$ is [[continuous function|continuous]] ## MATLAB realization ```matlab %BPATH1 Brownian path simulation randn('state',100) % set the state of randn T = 1; N = 500; dt = T/N; dW = zeros(1,N); % preallocate arrays ... W = zeros(1,N); % for efficiency dW(1) = sqrt(dt)*randn; % first approximation outside the loop ... W(1) = dW(1); % since W(0) = 0 is not allowed for j = 2:N dW(j) = sqrt(dt)*randn; % general increment W(j) = W(j-1) + dW(j); end plot([0:dt:T],[0,W],'r-') % plot W against t xlabel('t','FontSize',16) ylabel('W(t)','FontSize',16,'Rotation',0) ``` ## See also - [[Euler-Maruyama method]] --- ## References 1. https://galton.uchicago.edu/~lalley/Courses/313/BrownianMotionCurrent.pdf 2. https://sites.me.ucsb.edu/~moehlis/APC591/tutorials/tutorial7/node2.html 3. https://en.wikipedia.org/wiki/Wiener_process 4. https://www.physik.uni-augsburg.de/theo1/hanggi/History/Langevin1908.pdf 5. https://chewisinho.github.io/main.pdf, p. 5 ParseError: Can't use function '$' in math mode at position 41: …}(0, (t-s) I_d)$̲$ ([[Gaussian d…